Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 18, 2023

This PR contains the following updates:

Package Change Age Confidence
org.immutables:value (source) 2.9.02.12.1 age confidence

Release Notes

immutables/immutables (org.immutables:value)

v2.12.1

Compare Source

Maintenance & bugfix release
  • #​1631 new PlainAttribute as a workaround
  • #​1632 fixed incompatibility of builders for package-private records and visibility=PUBLIC
  • #​1630 fixed Staged builder's new start() incompatible with pojos etc.
What's Changed
  • JDK 23+ (Upgraded build and matrix to include Java 25/javac) by @​SimY4 in #​1627

Full Changelog: immutables/immutables@2.12.0...2.12.1

v2.12.0

Compare Source

12 Anniversary Edition 🎉

maintenance & refinements

Thank you for the PRs, bug reports and feedback!

PRs

New Contributors

Full Changelog: immutables/immutables@2.11.7...2.12.0

v2.11.7

Compare Source

Maintenance & refinements release

Thank you for the bug reports and suggestions!

Issues

  • #​1621 Version 2.11.7 tag not present on GitHub
  • #​1611 Jspecify Nullable doesn't work properly with generics
  • #​1612 Conflicting constructor on empty interfaces when allParameters = true, and privateNoArgConstructor = true/ protectedNoArgConstructor = true (edge case regression after #​1604)
  • #​1579 TYPE_USE Nullable annotation not respected in the builder for arrays (arrays/elements annotation mirrors are missing)
    (addressed with some source code parsing, which requires -sourcepath to be provided during compilation)

PRs

New Contributors

Full Changelog: immutables/immutables@2.11.6...2.11.7

v2.11.6

Compare Source

Maintenance & refinements release

Thank you for the bug reports and suggestions!

Issues

  • #​1602 Avoid calling check/validation method twice when using plain public constructors (@Style(of = "new")
  • #​1603 Fixed compilation error with staged builders and complex generics
  • #​1604 parameterless constructor when there's no attributes, but allParameters=true or allMandatoryParameters=true

Full Changelog: immutables/immutables@2.11.5...2.11.6

v2.11.5

Compare Source

Maintenance & refinements release

Thank you for the bug reports and PRs!

Issues

  • #​1602 @Check methods (returning void i.e. non-normalizing) now works from plain public constructors (@Style(of = "new")
  • #​1583 Staged builder now works for "outside"/top-level class builders, including record builders (with *BuildStages class generated to hold stage interfaces)
  • #​1598 fixed: @Data from org.immutables:datatype can be used as meta-annotation
  • #​1433 additionalStrictContainerConstructor=false can be used to suppress redundant strict factory method (constructor) overload

PRs

New Contributors

Full Changelog: immutables/immutables@2.11.4...2.11.5

v2.11.4

Compare Source

Maintenance & refinements release

Thank you for the bug reports and PRs!

Issues

  • #​1597 Fixed constant defaults @Value.Default.{Int, Long, String...} were always applied for Immutable values (were ok for records)
  • #​1592 When multiple annotations share the same parent annotation in passAnnotations, only one child annotation is propagated on an attribute
  • #​1591 #​1521 @​Serial.AllStructural wit class retention and fixed to work as meta-annotation (on a custom style annotation etc).
  • #​1588 Missing imports for classes in package names with _ (Fixed handling of $ and _ in java identifiers in import rewriter)
  • #​1585 Additional way to register custom immutable annotation. Use -Aimmutables.annotation=<fqcn> for custom annotation (can have meta-styles etc)

PRs

New Contributors

Full Changelog: immutables/immutables@2.11.3...2.11.4

v2.11.3

Compare Source

Maintenance & refinements release

Thank you for PRs and providing feedback!

  • #​1432/#​1582 JDK optional types now have first class support for having default value provided by accessor annotated with @Value.Default, no warnings are issued.
  • #​1578 Fixed: missing header/package declaration in generated files with no imports
  • #​1580 Fixed: with methods do not handle fallbackNullableAnnotation properly on Map types

What's Changed

Full Changelog: immutables/immutables@2.11.2...2.11.3

v2.11.2

Compare Source

Maintenance and refinement release

  • #​1572 #​1573 Optimized from merging method for many supertypes
  • Introduced static mode (via compile time overloads only) for from supertypes. Switch via Style.mergeFromSupertypesDynamically=false. This gives (very) old behavior before dynamic merging was introduced, for some, it is more intuitive than dynamic logic and avoid heap pollution (& ClassCastException) for some rare cases of supertypes imlementing parameterized interfaces with different actual type arguments in a hierarchy.
  • #​1576 Fixed Jackson JSON deserialization for optional types (required=false was generated only for Nullable, now - for any non mandatory attribute). Generating Jackson required can be disabled via setJacksonPropertyRequired=false, the difference is if Jackson will issue an error on missing attribute or Immutables' builder will throw an exception for the same.

PRs merged

New Contributors

Full Changelog: immutables/immutables@2.11.1...2.11.2

v2.11.1

Compare Source

Maintenance and minor enhancements

  • Various bugfixes: Jackson integration, refinements/fixes in withers.
  • Extending Builders for records. I.e. nested static class Builder extends MyRecordBuilder {}
  • Can expose *IsSet methods on builder
  • new module org.immutables:datatype. It's slightly modernized version of org.immutables:data (now deprecated), no dependency on Guava, + support for records with generated builders

Also

New Contributors

Full Changelog: immutables/immutables@2.11.0...2.11.1

v2.11.0

Compare Source

Many thanks to all contributors: PRs, testing and evaluation much appreciated!

  • @Value.Builder for records on builders
    • @Value.Default.* annotation for constant default values for records and regular abstract types
    • Generated "wither" interfaces for records @Value.Builder record A(int a, String b) implements WithA {..
  • JSpecify @Nullable support in @NullMarked mode.
  • In general improved support for TYPE_USE annotations (as far as compiler and peculiarities of existing code allows),
  • Lambda builders when using Style.attributeBuilderDetection=true: builder.value(b -> b.a(1).c(""))
  • Various bugfixes and other improvements

Also

Closed issues https://github.com/immutables/immutables/milestone/82?closed=1

New Contributors

Full Changelog: immutables/immutables@2.10.1...2.11.0

v2.10.1

Compare Source

Maintenance release

What's Changed
New Contributors

Full Changelog: immutables/immutables@2.10.0...2.10.1

v2.10.0

Compare Source

JakartaEE support

Style flag jakarta = true
Mainly package change for annotations and types like Validator

Miscellaneous
  • JDK9 unmodifiable collections for List, Set, Map, style flag jdk9Collections = true
  • Suppress from method, style flag from = ""
  • Non-strict modifiables allows reading unset attributes, style flag strictModifiables = false
  • Fixes in nested type_use annotations.
  • Performance: better initial capacity for collections
  • Refinements and fixes to Criteria modules
  • Plus many other refinements and maintance, see below
Workarounds for Gradle
  • imports for not-yet-generated types : add options.sourcepath
  • disable incremental compilation (options.incremental), may also help is some complex cases
What's Changed (since some last year's release)
New Contributors

Full Changelog: immutables/immutables@2.9.3...2.10.0

v2.9.3

Compare Source

Maintenance release

What's Changed

New Contributors

Full Changelog: immutables/immutables@2.9.2...2.9.3

v2.9.2

Compare Source

Fixes (reverts to older routine) issue affecting custom immutable annotations and meta annotation discovery in some cases leading to a deadlock: processing never finishes


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/immutables.version branch from 6044f9e to 1365b4c Compare October 6, 2023 18:41
@renovate renovate bot changed the title Update dependency org.immutables:value to v2.9.3 Update dependency org.immutables:value to v2.10.0 Oct 6, 2023
@renovate renovate bot force-pushed the renovate/immutables.version branch from 1365b4c to 8b4761e Compare February 17, 2024 21:42
@renovate renovate bot changed the title Update dependency org.immutables:value to v2.10.0 Update dependency org.immutables:value to v2.10.1 Feb 17, 2024
@renovate renovate bot force-pushed the renovate/immutables.version branch from 8b4761e to 59ad30b Compare June 27, 2025 22:49
@renovate renovate bot changed the title Update dependency org.immutables:value to v2.10.1 Update dependency org.immutables:value to v2.11.0 Jun 27, 2025
@renovate renovate bot force-pushed the renovate/immutables.version branch from 59ad30b to 4d0b6ff Compare July 15, 2025 23:50
@renovate renovate bot changed the title Update dependency org.immutables:value to v2.11.0 Update dependency org.immutables:value to v2.11.1 Jul 15, 2025
@renovate renovate bot force-pushed the renovate/immutables.version branch from 4d0b6ff to 921dc32 Compare August 4, 2025 20:36
@renovate renovate bot changed the title Update dependency org.immutables:value to v2.11.1 Update dependency org.immutables:value to v2.11.2 Aug 4, 2025
@renovate renovate bot force-pushed the renovate/immutables.version branch from 921dc32 to 0757cc4 Compare August 13, 2025 01:56
@renovate renovate bot changed the title Update dependency org.immutables:value to v2.11.2 Update dependency org.immutables:value to v2.11.3 Aug 13, 2025
@renovate renovate bot force-pushed the renovate/immutables.version branch from 0757cc4 to f5497eb Compare September 25, 2025 04:34
@renovate renovate bot changed the title Update dependency org.immutables:value to v2.11.3 Update dependency org.immutables:value to v2.11.4 Sep 25, 2025
@renovate renovate bot force-pushed the renovate/immutables.version branch from f5497eb to e66e1fb Compare October 8, 2025 04:29
@renovate renovate bot changed the title Update dependency org.immutables:value to v2.11.4 Update dependency org.immutables:value to v2.11.5 Oct 8, 2025
@renovate renovate bot force-pushed the renovate/immutables.version branch from e66e1fb to 363f3f4 Compare October 8, 2025 21:57
@renovate renovate bot changed the title Update dependency org.immutables:value to v2.11.5 Update dependency org.immutables:value to v2.11.6 Oct 8, 2025
@renovate renovate bot force-pushed the renovate/immutables.version branch from 363f3f4 to 395294d Compare November 18, 2025 05:30
@renovate renovate bot changed the title Update dependency org.immutables:value to v2.11.6 Update dependency org.immutables:value to v2.11.7 Nov 18, 2025
@renovate renovate bot force-pushed the renovate/immutables.version branch from 395294d to cc2ca90 Compare December 8, 2025 21:46
@renovate renovate bot changed the title Update dependency org.immutables:value to v2.11.7 Update dependency org.immutables:value to v2.12.0 Dec 8, 2025
@renovate renovate bot force-pushed the renovate/immutables.version branch from cc2ca90 to 442ab80 Compare January 6, 2026 20:53
@renovate renovate bot changed the title Update dependency org.immutables:value to v2.12.0 Update dependency org.immutables:value to v2.12.1 Jan 6, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant